home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 1833 / 1833.xpi / chrome / yoono.jar / ff3 / bookmarks-restore.js next >
Text File  |  2009-12-16  |  476b  |  23 lines

  1.  
  2. function backup ( file ) {
  3. try {
  4.  
  5.     var ieSvc = CL["@mozilla.org/browser/places/import-export-service;1"].getService(CI.nsIPlacesImportExportService);
  6.     ieSvc.exportHTMLToFile(file, true);
  7.     
  8. } catch(e) {
  9.     log.exception(e);
  10. }
  11. }
  12.  
  13. function restore ( file ) {
  14. try {
  15.  
  16.     var ieSvc = CL["@mozilla.org/browser/places/import-export-service;1"].getService(CI.nsIPlacesImportExportService);
  17.     ieSvc.importHTMLFromFile(file, true);
  18.  
  19. } catch(e) {
  20.     log.exception(e);
  21. }
  22. }
  23.